updated README

Andrew Cantino vor 11 Jahren
Ursprung
Commit
19e5344c3b
1 geänderte Dateien mit 2 neuen Zeilen und 2 gelöschten Zeilen
  1. 2 2
      README.md

+ 2 - 2
README.md

@@ -75,7 +75,7 @@ In your private copy of Huginn, do the following:
75 75
 * Setup a place for Huginn to run.  I recommend making a dedicated user on your server for Huginn, but this is not required.  Setup nginx or Apache to proxy pass to unicorn.  There is an example nginx script in `config/nginx/production.conf`.
76 76
 * Setup a production MySQL database for your installation.
77 77
 * Edit `config/unicorn/production.rb` and replace instances of *you* with the correct username for your server.
78
-* Edit `config/deploy.rb` and change all instances of `you` and `yourdomain` to the appropriate values for your server setup.  If you want RVM to be used, uncomment the appropriate lines.  Then, run `cap deploy:setup` followed by `cap deploy`.  If everything goes well, this should start some unicorn workers on your server to run the Huginn web app.
78
+* Edit `config/deploy.rb` and change all instances of `you` and `yourdomain` to the appropriate values for your server setup.  If you want RVM to be used and installed, uncomment the appropriate lines.  Then, run `cap deploy:setup` followed by `cap deploy`.  If everything goes well, this should start some unicorn workers on your server to run the Huginn web app.
79 79
 * After deploying with capistrano, SSH into your server, go to the deployment directory, and run `RAILS_ENV=production bundle exec rake db:seed` to generate your admin user.  Immediately login to your new Huginn installation with the username of `admin` and the password of `password` and change your email and password!
80 80
 * You'll need to run bin/schedule.rb and bin/twitter_stream.rb in a daemonized way.  I've just been using screen sessions, but please contribute something better!
81 81
 
@@ -90,7 +90,7 @@ In your private copy of Huginn, do the following:
90 90
 
91 91
 In order to use the WeatherAgent you need an [API key with Wunderground](http://www.wunderground.com/weather/api/).  Signup for one and then put it in `app/models/agents/weather_agent.rb` in the `wunderground` method.
92 92
 
93
-## Logging your location to the UserLocationAgent
93
+#### Logging your location to the UserLocationAgent
94 94
 
95 95
 You can use [Post Location](https://github.com/cantino/post_location) on your iPhone to post your location to an instance of the UserLocationAgent.  Make a new one to see instructions.
96 96